home *** CD-ROM | disk | FTP | other *** search
/ InterCD 2001 April / april_2001.iso / intercd / root / Browsers / ^Enfish_Onespace / setup.exe / setup.cab / FileTyps.ini < prev    next >
Encoding:
INI File  |  2000-10-11  |  1.3 KB  |  44 lines

  1. ;
  2. ; one database per ini file
  3. ;
  4. ; Database must have:
  5. ;
  6. ;     NumberOfObjects     - The number of object that will be generated for
  7. ;                           each record in the database
  8. ;     NumberOfInputFields - The number of fields each input record contains
  9. ;
  10. ; Each Object:
  11. ;
  12. ;     ObjectType          - The Object Type
  13. ;     NumberOfProps       - The number of properties to be written for this object
  14. ;     
  15. ;     For each property:
  16. ;       
  17. ;         PropertyX       - The Property Name
  18. ;         ValueX          - The value of the property
  19. ;                             $n = input field #n
  20. ;                             %n = object ID for object #n (must be previous)
  21. ;                             #n = numeric constant n
  22. ;                             string = string constant <string>
  23. ;
  24. ;     At the moment the first property of an object must be string, and must uniquely 
  25. ;     identify the object (in other words, I will look for an object of this type with
  26. ;     the first property, and if it exists I will update it, otherwise I will create it)
  27.  
  28. [DataBase]
  29. Name=FileFilters
  30. NumberOfObjects=1
  31. NumberOfInputFields=3
  32.  
  33. [Object1]
  34. ObjectType=FileFilter
  35. NumberOfProps=3
  36. Property1=FileFilter_Name
  37. Value1=$1
  38. Property2=FileFilter_Flags
  39. Value2=$2
  40. Property3=FileFilter_DataAccessID
  41. Value3=$3
  42.  
  43.  
  44.